home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
extra
/
pro13
/
tell.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-09
|
226b
|
17 lines
/*
tell.C
Copyright (C) 1993, Geoff Friesen B.Sc.
All rights reserved.
*/
#define INCL_TELL
#ifndef INCL_LSEEK
#include "lseek.C"
#endif
long tell (int handle)
{
return lseek (handle, 0L, SEEK_CUR);
}